From: Keir Fraser Date: Tue, 27 Jan 2009 11:45:59 +0000 (+0000) Subject: x86: clean up struct page_info X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14014^2~3 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e65026569ef328c5cfe89eb37dc57e375a14b2aa;p=xen.git x86: clean up struct page_info Remove the now unnecessary (and leading to misalignment of cpumask on x86-64) 'packed' attributes. Signed-off-by: Jan Beulich --- diff --git a/xen/include/asm-x86/mm.h b/xen/include/asm-x86/mm.h index 7690285b89..4b1ca36286 100644 --- a/xen/include/asm-x86/mm.h +++ b/xen/include/asm-x86/mm.h @@ -34,7 +34,7 @@ struct page_info unsigned long _domain; /* pickled format */ /* Type reference count and various PGT_xxx flags and fields. */ unsigned long type_info; - } __attribute__ ((packed)) inuse; + } inuse; /* Page is on a free list: ((count_info & PGC_count_mask) == 0). */ struct { @@ -42,7 +42,7 @@ struct page_info u32 order; /* Mask of possibly-tainted TLBs. */ cpumask_t cpumask; - } __attribute__ ((packed)) free; + } free; } u;